home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 September / CHIP NET Rehberi Eylül 1998.iso / ftp / iftp21 / EXAMPLES.ZIP / EXAM12.FTP < prev    next >
Text File  |  1997-12-16  |  333b  |  17 lines

  1. //
  2. //  Script example using the UPDATE command for copying files which
  3. //  do not exist or are newer.
  4. //
  5.  
  6.     open website
  7.     if not success then abort "Failed to connect to Website"
  8.  
  9.     Update /sxlist.zip
  10.     if not success then begin
  11.        WriteError "Update"
  12.        exit
  13.     endif
  14.  
  15.     Log "Successful update"
  16.  
  17.